home *** CD-ROM | disk | FTP | other *** search
/ Menu Planner / Menu Planner (Ohio Distinctive Software).ISO / pc / mp.dir / 00138.ls < prev    next >
Encoding:
Text File  |  1995-11-07  |  862 b   |  63 lines

  1. on help
  2.   global help
  3.   if help = 1 then
  4.     help1()
  5.   else
  6.     if help = 2 then
  7.       help2()
  8.     else
  9.       help3()
  10.     end if
  11.   end if
  12. end
  13.  
  14. on help1
  15.   puppetSound("meals(11-8)")
  16.   updateStage()
  17. end
  18.  
  19. on help2
  20.   puppetSound("charts-all(11-8)")
  21.   updateStage()
  22. end
  23.  
  24. on help3
  25.   puppetSound("personal d cond(11-8)")
  26.   updateStage()
  27.   tell the stage
  28.     go(the frame)
  29.   end tell
  30. end
  31.  
  32. on lowhelp
  33.   tell the stage
  34.     puppetSprite(44, 1)
  35.   end tell
  36.   tell the stage
  37.     puppetSprite(45, 1)
  38.   end tell
  39.   tell the stage
  40.     puppetSound(">800(11-8)")
  41.   end tell
  42.   updateStage()
  43.   tell the stage
  44.     go(the frame)
  45.   end tell
  46. end
  47.  
  48. on highhelp
  49.   tell the stage
  50.     puppetSprite(44, 1)
  51.   end tell
  52.   tell the stage
  53.     puppetSprite(45, 1)
  54.   end tell
  55.   tell the stage
  56.     puppetSound("<5000(11-8)")
  57.   end tell
  58.   updateStage()
  59.   tell the stage
  60.     go(the frame)
  61.   end tell
  62. end
  63.